[Rush] Add rush-serve plugin dashboard UI and config updates - #5893
Open
mojaza wants to merge 6 commits into
Open
[Rush] Add rush-serve plugin dashboard UI and config updates#5893mojaza wants to merge 6 commits into
mojaza wants to merge 6 commits into
Conversation
mojaza
requested review from
apostolisms,
dmichon-msft,
iclanton,
jxanthony and
octogonz
as code owners
July 22, 2026 02:48
bmiddha
reviewed
Jul 22, 2026
iclanton
reviewed
Jul 29, 2026
iclanton
reviewed
Jul 29, 2026
iclanton
reviewed
Jul 29, 2026
iclanton
reviewed
Jul 29, 2026
Keep prefer-const, no-explicit-any, no-new-null, and no-control-regex enabled. Resolve their findings without eslint-disable suppressions.
Resolve typedef and no-explicit-any lint findings without ESLint suppressions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a built-in dashboard for the Rush serve plugin so developers can monitor and control watch-mode execution from a browser without creating a separate client.
The change introduces dashboard frontend assets, serves them through the plugin, and documents how to configure and open the dashboard route.
Details
Added a dashboard UI with:
Other changes:
Design notes
Considered keeping the dashboard as an external sample app.
Chose an in-package dashboard to make onboarding easier and reduce setup friction.
Compatibility and performance
Backward compatibility is preserved; changes are additive.
Existing plugin configuration continues to work.
Runtime impact is expected to be minimal and mostly limited to static asset serving during watch-mode usage.
How it was tested
How to run the server
rush build -t rushin your terminalnode ./apps/rush/lib-esm/start-dev.js start --port <port_number>https://127.0.0.1:<port_number>/dashboard/dashboard.htmlImpacted documentation